fullcalendar.default-settings.js ➔ $   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 22
Code Lines 16

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 16
nc 1
nop 0
dl 0
loc 22
rs 9.6
c 1
b 0
f 0

1 Function

Rating   Name   Duplication   Size   Complexity  
A fullcalendar.default-settings.js ➔ ... ➔ ??? 0 1 1
1
$(function () {
2
    $('#calendar-holder').fullCalendar({
3
        header: {
4
            left: 'prev, next',
5
            center: 'title',
6
            right: 'month, basicWeek, basicDay,'
7
        },
8
        lazyFetching: true,
9
        timeFormat: {
10
            agenda: 'h:mmt',
11
            '': 'h:mmt'
12
        },
13
        eventSources: [
14
            {
15
                url: '/full-calendar/load',
16
                type: 'POST',
17
                data: {},
18
                error: () => {}
19
            }
20
        ]
21
    });
22
});
23